home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / ubmark / cspawn.c < prev    next >
Text File  |  1996-07-10  |  190b  |  15 lines

  1. /*************
  2. *    compile to "cspawn"
  3. *    place in /bin directory
  4. *************/
  5.  
  6.  
  7. #include <stdio.h>
  8.  
  9. main()    {
  10.  
  11.     if (fork() == 0)
  12.         execv("/bin/cache.exe", NULL);
  13.     return(0);
  14. }
  15.